home *** CD-ROM | disk | FTP | other *** search
/ Leonardo daVinci / LEODAVINCI.ISO / DATA / G2.Dxr / 00020_Help L0.ls < prev    next >
Encoding:
Text File  |  1996-11-22  |  222 b   |  17 lines

  1. global vG2Room0Obj
  2.  
  3. on mouseDown
  4.   if objectp(vG2Room0Obj) then
  5.     registerMouseDown()
  6.     clickSound()
  7.   end if
  8. end
  9.  
  10. on mouseUp
  11.   if not validateMouseDown() then
  12.     exit
  13.   end if
  14.   L0Goodbye(vG2Room0Obj)
  15.   goHelp()
  16. end
  17.